Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update go deps #504

Merged
merged 1 commit into from
Nov 9, 2023
Merged

Update go deps #504

merged 1 commit into from
Nov 9, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 26, 2023

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/go-jose/go-jose/v3 require patch v3.0.0 -> v3.0.1
github.com/go-logr/logr require minor v1.2.4 -> v1.3.0
github.com/hashicorp/go-retryablehttp require patch v0.7.4 -> v0.7.5
github.com/redis/go-redis/v9 require minor v9.2.1 -> v9.3.0
golang.org/x/exp require digest 7918f67 -> 2478ac8
golang.org/x/mod require minor v0.13.0 -> v0.14.0

Release Notes

go-jose/go-jose (github.com/go-jose/go-jose/v3)

v3.0.1

Compare Source

Fixed:

go-logr/logr (github.com/go-logr/logr)

v1.3.0

Compare Source

This release adds support for slog in a new, self-contained logr/slogr package. Implementers of a logr.LogSink are encouraged, but not required, to extend their implementation to improve the quality of log output coming from a slog API call.

Breaking change: the call depth for LogSink.Enabled when called via Logger.Enabled was fixed to be the same as for other call paths. Implementers of a LogSink who have worked around this bug will need to remove their workarounds.

Security best practices were improved. Only Go versions >= 1.18 are supported by this release.

What's Changed


New Contributors

Full Changelog: go-logr/logr@v1.2.4...v1.3.0

hashicorp/go-retryablehttp (github.com/hashicorp/go-retryablehttp)

v0.7.5

Compare Source

redis/go-redis (github.com/redis/go-redis/v9)

v9.3.0: 9.3.0

Compare Source

What's new?

JSON support

We are continuing to add support for more Redis data types in Go-Redis. Today, we are happy to announce support for JSON. JSON is a Redis data structure for storing, querying, and manipulating a single JSON document.

With a JSON key in Redis, you can:

  • Use it as a versatile hierarchical data type
  • Opt for it as a sophisticated alternative to the traditional hash data structure
  • Treat it as a singular document in a document-based database

The following example demonstrate how to get started with JSON in Go-Redis:

var ctx = context.Background()
client := redis.NewClient(&redis.Options{
	Addr: "localhost:6379",
})

type Bicycle struct {
	Brand       string
	Model       string
	Price       int
}

bicycle := Bicycle{
	Brand: "Velorim",
	Model: "Jigger",
	Price: 270,
}

_, err := client.JSONSet(ctx, "bicycle:1", "$", bicycle).Result()
if err != nil {
	panic(err)
}

res, err := client.JSONGet(ctx, "bicycle:1", ".Model").Result()
if err != nil {
	panic(err)
}
fmt.Println("bicycle:1 model is", res)

Learn more about JSON support in Redis

Other notable improvements

🐛 Bug Fixes

  • Handle wrapped errors in scripter.Run (#​2674)
  • BUG: BFReserveArgs - error_rate & capacity (#​2763)
  • fix: free turn of connection pool when leave with error (#​2658)
  • Add BitMapCmdable to Cmdable. (#​2737)

🧰 Maintenance

  • Option types must propagage missing fields (#​2726)
  • fix missing fields in different Options (#​2757)
  • update PubSub.Channel documentation (#​2761)
  • Linking to Redis learning resources (#​2759)
  • Creating CODEOWNERS for documentation (#​2749)
  • chore(deps): bump rojopolis/spellcheck-github-actions from 0.33.1 to 0.34.0 (#​2740)
  • chore(deps): bump google.golang.org/grpc from 1.55.0 to 1.56.3 in /example/otel (#​2775)
  • chore(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 in /example/otel (#​2776)
  • Fix OpenTelemetry link in README (#​2755)

Contributors

We'd like to thank all the contributors who worked on this release!

@​Sovietaced, @​chayim, @​chenjie199234, @​cyningsun, @​dependabot, @​dependabot[bot], @​fred84, @​nic-gibson, @​ofekshenawa, @​peczenyj, @​sethrylan, @​snaffi, @​tzq0301 and @​vmihailenco


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update module github.com/livekit/psrpc to v0.5.0 Update module github.com/livekit/psrpc to v0.5.0 - autoclosed Oct 26, 2023
@renovate renovate bot closed this Oct 26, 2023
@renovate renovate bot deleted the renovate/go-deps branch October 26, 2023 03:06
@renovate renovate bot changed the title Update module github.com/livekit/psrpc to v0.5.0 - autoclosed Update module github.com/livekit/psrpc to v0.5.0 Oct 27, 2023
@renovate renovate bot reopened this Oct 27, 2023
@renovate renovate bot restored the renovate/go-deps branch October 27, 2023 07:18
@renovate renovate bot changed the title Update module github.com/livekit/psrpc to v0.5.0 Update module github.com/go-logr/logr to v1.3.0 Oct 27, 2023
@renovate renovate bot force-pushed the renovate/go-deps branch from d94c1ba to b1309a5 Compare October 27, 2023 07:18
@renovate renovate bot changed the title Update module github.com/go-logr/logr to v1.3.0 Update go deps Oct 31, 2023
@renovate renovate bot force-pushed the renovate/go-deps branch 2 times, most recently from cc5a0e4 to 853b0e6 Compare November 4, 2023 16:12
@renovate renovate bot force-pushed the renovate/go-deps branch 2 times, most recently from 59e3c14 to 1f9cde7 Compare November 8, 2023 22:45
Generated by renovateBot
@renovate renovate bot force-pushed the renovate/go-deps branch from 1f9cde7 to 92882de Compare November 9, 2023 01:55
@davidzhao davidzhao merged commit 625c7d8 into main Nov 9, 2023
2 checks passed
@davidzhao davidzhao deleted the renovate/go-deps branch November 9, 2023 19:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant